Finding Derivatives

You can use the differentiation-rules to find derivatives.

Finding Derivatives using Python

(Using the SymPy Online Interpreter) You can find derivatives using SymPy's diff function. Given a function to differentiate:

diff(4/(x**3))

sympy diff example